home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Objects / protos / funcobject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  372 b   |  7 lines

  1. static PyObject *func_getattr ( PyFunctionObject *op , char *name );
  2. static int func_setattr ( PyFunctionObject *op , char *name , PyObject *value );
  3. static void func_dealloc ( PyFunctionObject *op );
  4. static PyObject *func_repr ( PyFunctionObject *op );
  5. static int func_compare ( PyFunctionObject *f , PyFunctionObject *g );
  6. static long func_hash ( PyFunctionObject *f );
  7.